Get<T>(IPdfDict,PdfName,T) Method
In This Topic
Gets the value associated with the specified key, if the value does not exist or cannot be converted to a returns the . Note! This method returns IPdfRef if is IPdfRef, otherwise the method resolves the reference and returns *actual* object.
Syntax
'Declaration
Public Overloads Shared Function Get(Of As IPdfObject)( _
ByVal As IPdfDict, _
ByVal As PdfName, _
ByVal As _
) As
public static Get<>(
IPdfDict ,
PdfName ,
)
where T: IPdfObject
Parameters
- dict
- The current dictionary.
- key
- The key identifying the value.
- defValue
- The default value.
Type Parameters
- T
Return Value
The value associated with the specified key, or null
See Also